home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / windows / fpnl3.zip / FPNL3DCU.ZIP / TFLOATPN.PAS < prev    next >
Pascal/Delphi Source File  |  1996-07-01  |  297b  |  19 lines

  1. unit TFloatPnlReg;
  2.  
  3. interface
  4.  
  5. uses
  6.   TFloatPanel, Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ExtCtrls, Buttons;
  8.  
  9. procedure Register ;
  10.  
  11. implementation
  12.  
  13. procedure Register;
  14. begin
  15.   RegisterComponents('Garaio Components', [TFloatPnl]);
  16. end;
  17.  
  18. end.
  19.